home *** CD-ROM | disk | FTP | other *** search
/ Final Fantasy the Spirits Within Cardz / Final Fantasy the Spirits Within CD Cardz - Disc 1: Aki Ross.iso / pc / assets / aki-puzzle.dcr / 00002_startMovie.ls next >
Encoding:
Text File  |  2001-07-21  |  845 b   |  37 lines

  1. global checkForMovieOver
  2.  
  3. on prepareMovie
  4.   if the platform contains "win" then
  5.     castLib("dummi").fileName = the applicationPath & "vidpc"
  6.   else
  7.     castLib("dummi").fileName = the applicationPath & "dummi"
  8.   end if
  9. end
  10.  
  11. on startMovie
  12.   puppetSound(1, 0)
  13.   checkForMovieOver = 0
  14.   sprite(2).visible = 1
  15.   sprite(20).visible = 1
  16.   sprite(21).visible = 1
  17.   sprite(22).visible = 0
  18.   set the blend of sprite 26 to 70
  19.   set the blend of sprite 19 to 70
  20.   sprite(29).visible = 0
  21.   repeat with j = 31 to 45
  22.     sprite(j).visible = 0
  23.   end repeat
  24.   repeat with k = 47 to 49
  25.     sprite(k).visible = 0
  26.   end repeat
  27.   repeat with i = 141 to 146
  28.     sprite(i).visible = 0
  29.   end repeat
  30.   repeat with i = 151 to 156
  31.     sprite(i).visible = 1
  32.   end repeat
  33.   sprite(19).visible = 0
  34.   sprite(25).visible = 0
  35.   set the loc of sprite 24 to point(285, 247)
  36. end
  37.